From: Kim F. Storm Date: Mon, 26 Aug 2002 09:56:07 +0000 (+0000) Subject: (make_terminal_frame) [CANNOT_DUMP]: Initialize X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~31018 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=04dd1f33cf5a5069b0f6d19fffcded24c4ab42c6;p=emacs.git (make_terminal_frame) [CANNOT_DUMP]: Initialize foreground and background colors. From Joe Buehler (tiny change). --- diff --git a/src/frame.c b/src/frame.c index 6adc1f32d85..ffd0c5ade10 100644 --- a/src/frame.c +++ b/src/frame.c @@ -490,6 +490,10 @@ make_terminal_frame () make_mac_terminal_frame (f); #else f->output_data.x = &tty_display; +#ifdef CANNOT_DUMP + FRAME_FOREGROUND_PIXEL(f) = FACE_TTY_DEFAULT_FG_COLOR; + FRAME_BACKGROUND_PIXEL(f) = FACE_TTY_DEFAULT_BG_COLOR; +#endif #endif /* MAC_OS8 */ #endif /* WINDOWSNT */ #endif /* MSDOS */